home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Music / MISC / Metro / Rexx / example3.rexx < prev    next >
OS/2 REXX Batch file  |  1995-08-23  |  806b  |  34 lines

  1. /*
  2.  * Example Metronome ARexx script.
  3.  *
  4.  * You need to run the Metro first!
  5.  *
  6.  * Plays football chant!
  7.  */
  8.  
  9.  
  10. ADDRESS METRO.1
  11.  
  12. tempo 90            /* Set tempo */
  13. note 4                /* Set note type to crotchets */
  14. loadsample "Samples/Cowbell2"    /* Load cowbell sample */
  15. start                /* Start */
  16. waitticks 1            /* Note: 1 click has already started */
  17.  
  18. note 8                /* Change to quavers */
  19. waitticks 2                /* Wait for 2 quavers */
  20.  
  21. note 4                /* Change to crothchets */
  22. waitticks 1                /* Wait for 1 crotchets */
  23.  
  24. note 8                /* Change to quavers */
  25. waitticks 3                /* Wait for 3 quavers */
  26.  
  27. note 4                /* Change to crotchets */
  28. waitticks 1                /* Wait for 1 crotchets */
  29.  
  30. note 8                /* Change to quavers */
  31. waitticks 2                /* Wait for 2 quavers */
  32.  
  33. nomoreticks            /* Stop and let last crotchet finish playing */
  34.